
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
npm-config-user-agent-parser
Advanced tools
npm
and yarn
have a user agent string that contains version information.
This npm module parses the string into an object that is easily consumed on the
command-line or in JavaScript using the Node API.
An example of npm
's user agent on a Macbook Pro:
npm/6.1.0 node/v8.9.4 darwin x64
and an example of yarn
's on the same machine:
yarn/1.7.0 npm/? node/v8.9.4 darwin x64
$ npm install npm-config-user-agent-parser
$ npm-config-user-agent-parser 'yarn/1.7.0 npm/? node/v8.9.4 darwin x64'
yarn 1.7.0
node 8.9.4
platform darwin
arch x64
raw yarn/1.7.0 npm/? node/v8.9.4 darwin x64
const parser = require('npm-config-user-agent-parser');
const parsed = parser(process.env.npm_config_user_agent);
console.log(parsed);
Outputs:
{
"yarn": {
"raw": "1.7.0",
"major": 1,
"minor": 7,
"patch": 0,
"prerelease": [],
"build": [],
"version": "1.7.0"
},
"npm": null,
"node": {
"raw": "8.9.4",
"major": 8,
"minor": 9,
"patch": 4,
"prerelease": [],
"build": [],
"version": "8.9.4"
},
"platform": "darwin",
"arch": "x64",
"raw": "yarn/1.7.0 npm/? node/v8.9.4 darwin x64"
}
FAQs
Parser for process.env.npm_config_user_agent
The npm package npm-config-user-agent-parser receives a total of 1,644 weekly downloads. As such, npm-config-user-agent-parser popularity was classified as popular.
We found that npm-config-user-agent-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.